home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
forms
/
sticky
/
sticky.bas
next >
Wrap
BASIC Source File
|
1996-01-11
|
446b
|
16 lines
Option Explicit
Type Rect
left As Integer
top As Integer
right As Integer
bottom As Integer
End Type
Global Const MM_TWIPS = 6
Declare Function GetScreenDC Lib "User" Alias "GetDC" (ByVal hWnd As Integer) As Integer
Declare Function ReleaseScreenDC Lib "User" Alias "ReleaseDC" (ByVal hWnd As Integer, ByVal hDC As Integer) As Integer
Declare Sub DrawFocusRect Lib "User" (ByVal hDC As Integer, lpRect As Rect)